home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / src / lib / posix / read.c < prev    next >
C/C++ Source or Header  |  1990-07-19  |  166b  |  10 lines

  1. #include <lib.h>
  2.  
  3. PUBLIC int read(fd, buffer, nbytes)
  4. int fd;
  5. char *buffer;
  6. unsigned nbytes;
  7. {
  8.   return(callm1(FS, READ, fd, nbytes, 0, buffer, NIL_PTR, NIL_PTR));
  9. }
  10.